home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
c4
/
pro2
/
1n04056a
< prev
next >
Wrap
Text File
|
1990-07-19
|
517b
|
23 lines
init_menu();
while (choice != EXIT_PROGRAM)
{
choice = INVALID;
key = Input(&x, &y);
choice = disp_menu(key, x, y);
key = 0;
switch (choice)
{
case FIRST_CHOICE:
execute_first();
break;
case SECOND_CHOICE:
execute_second();
break;
etc.
}
}